/* Fallback animation for the hero H1 title background (when original JS/CSS assets are missing). */

/* Make sure heading can hold pseudo elements behind it */
.elementor-heading-title.elementor-size-xxl {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.elementor-heading-title.elementor-size-xxl::before {
  content: "";
  position: absolute;
  inset: -18px -28px;
  z-index: -1;
  border-radius: 999px;
  background: radial-gradient(closest-side, rgba(0, 166, 255, 0.35), transparent 70%),
    radial-gradient(closest-side, rgba(195, 105, 255, 0.30), transparent 70%),
    radial-gradient(closest-side, rgba(255, 69, 144, 0.30), transparent 70%);
  background-size: 140% 140%;
  background-position: 0% 50%, 50% 0%, 100% 50%;
  filter: blur(10px);
  opacity: 0.95;
  animation: fi-title-glow 6s ease-in-out infinite;
  pointer-events: none;
}

.elementor-heading-title.elementor-size-xxl::after {
  content: "";
  position: absolute;
  inset: -6px -10px;
  z-index: -2;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  filter: blur(1px);
  opacity: 0.35;
  pointer-events: none;
}

@keyframes fi-title-glow {
  0% {
    transform: translate3d(-6px, 0px, 0) scale(1);
    background-position: 0% 50%, 50% 0%, 100% 50%;
  }
  50% {
    transform: translate3d(6px, -2px, 0) scale(1.03);
    background-position: 100% 50%, 50% 100%, 0% 50%;
  }
  100% {
    transform: translate3d(-6px, 0px, 0) scale(1);
    background-position: 0% 50%, 50% 0%, 100% 50%;
  }
}


